home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / compress / tar321__.zip / SOURCES.ZIP / MAKEFILE.IX < prev    next >
Text File  |  1997-03-15  |  1KB  |  38 lines

  1. #
  2. #    makefile.ix - for 386/ix and, possibly, other System V's
  3. #
  4. #CFLAGS    = -g
  5. CFLAGS    = -O -s
  6. OBJ    = tar.o tape.o store.o savefile.o extract.o restore.o\
  7.     lzpack.o unlzw.o compress.o roll.o percent.o qicface.o\
  8.     diszip.o zippipe.o deflate.o trees.o bits.o ziperror.o\
  9.     crc32.o fmatch.o readopt.o tailor.o
  10.  
  11. tar:    $(OBJ)
  12.     $(CC) $(CFLAGS) -o Tar $(OBJ)
  13.     mcs -d Tar
  14.  
  15. tar.o:        tar.c      define.h compress.h zippipe.h lzwhead.h lzwbits.h
  16. tape.o:     tape.c     define.h compress.h zippipe.h lzwhead.h
  17. savefile.o: savefile.c define.h compress.h
  18. store.o:    store.c    define.h
  19. extract.o:  extract.c  define.h lzwbits.h zippipe.h
  20. restore.o:  restore.c  define.h lzwbits.h
  21. lzpack.o:   lzpack.c
  22. unlzw.o:    unlzw.c    lzwbits.h
  23. compress.o: compress.c lzwbits.h
  24. roll.o:     roll.c
  25. percent.o:  percent.c
  26. qicface.o:  qicface.c
  27. fmatch.o:   fmatch.c   modern.h
  28. readopt.o:  readopt.c  define.h modern.h lzwbits.h
  29. tailor.o:   tailor.c   define.h modern.h sysup.h
  30.  
  31. diszip.o:   diszip.c   modern.h zippipe.h stdinc.h zipdefs.h crc32.h
  32. zippipe.o:  zippipe.c  modern.h zippipe.h zalloc.h zipguts.h crc32.h ziposcod.h
  33. deflate.o:  deflate.c  modern.h zippipe.h zalloc.h zipdefs.h zipguts.h
  34. trees.o:    trees.c    modern.h zippipe.h zalloc.h zipdefs.h zipguts.h
  35. bits.o:     bits.c     modern.h zippipe.h zalloc.h zipdefs.h zipguts.h stdinc.h
  36. ziperror.o: ziperror.c
  37. crc32.o:    crc32.c    modern.h crc32.h
  38.